home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C & C++ Multimedia Cyber Classroom
/
C and C++ Multimedia Cyber Classroom (Prentice Hall) (1998).iso
/
cpphtp2
/
code.jar
/
code
/
ch12
/
fig12_01.txt
next >
Wrap
Text File
|
1998-02-27
|
203b
|
9 lines
1 template< class T >
2 void printArray( const T *array, const int count )
3 {
4 for ( int i = 0; i < count; i++ )
5 cout << array[ i ] << " ";
6
7 cout << endl;
8 }